Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
typescript
Advanced tools
The TypeScript npm package is a superset of JavaScript that compiles to clean JavaScript output. It adds optional static typing to JavaScript, which can help with the development of large-scale applications and lead to more robust code. TypeScript is designed for the development of large applications and transcompiles to JavaScript.
Static Type Checking
TypeScript allows you to define types for your variables and function parameters, which helps catch errors at compile time rather than at runtime.
let isDone: boolean = false;
Classes and Interfaces
TypeScript supports modern JavaScript features like classes and interfaces, allowing for more structured and maintainable code.
class Animal {
name: string;
constructor(theName: string) { this.name = theName; }
move(distanceInMeters: number = 0) {
console.log(`${this.name} moved ${distanceInMeters}m.`);
}
}
Modules
TypeScript provides support for modules, enabling you to organize your code into separate files and manage dependencies more effectively.
import { ZipCodeValidator } from './ZipCodeValidator';
let myValidator = new ZipCodeValidator();
Generics
Generics enable you to create reusable components that work with a variety of types rather than a single one.
function identity<T>(arg: T): T {
return arg;
}
Advanced Types
TypeScript offers advanced types like intersection types, union types, and mapped types, which provide powerful ways to work with your data structures.
type Tree<T> = {
value: T;
left: Tree<T>;
right: Tree<T>;
};
Tooling Support
TypeScript integrates with many editors and provides features like autocompletion, type checking, and source navigation, enhancing the development experience.
n/a
Flow is a static type checker for JavaScript. It provides similar functionality to TypeScript, offering static typing in JavaScript, but it uses a different syntax and type system.
Babel preset for TypeScript allows Babel to parse and transpile TypeScript code. While Babel itself is mainly a JavaScript compiler, this preset brings TypeScript support to Babel's ecosystem.
CoffeeScript is a language that compiles into JavaScript. It provides syntactic sugar inspired by Ruby, Python, and Haskell to enhance JavaScript readability and brevity. It does not offer static typing but focuses on cleaner syntax.
Elm is a functional language that compiles to JavaScript. It emphasizes simplicity and quality tooling, and while it is not a direct alternative to TypeScript's type system, it offers strong typing and eliminates runtime exceptions.
Dart is an object-oriented, class-defined, garbage-collected language using a C-style syntax that transcompiles optionally into JavaScript. It includes static typing and is developed by Google, often used for building web and mobile applications.
TypeScript is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the playground, and stay up to date via our blog and Twitter account.
Find others who are using TypeScript at our community page.
For the latest stable version:
npm install -D typescript
For our nightly builds:
npm install -D typescript@next
There are many ways to contribute to TypeScript.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
For details on our planned features and future direction, please refer to our roadmap.
FAQs
TypeScript is a language for application scale JavaScript development
The npm package typescript receives a total of 53,218,915 weekly downloads. As such, typescript popularity was classified as popular.
We found that typescript demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.